home *** CD-ROM | disk | FTP | other *** search
/ Spiceworld The Movie - Interactive CD-ROM / Spiceworld The Movie: Interactive CD-ROM.iso / pc / elements / spicetwo.dir / scripts_131.ls < prev    next >
Encoding:
Text File  |  1997-12-04  |  526 b   |  25 lines

  1. on prepareFrame
  2.   global LOOPFRAME, VIDVOLUME
  3.   if not (LOOPFRAME = the frameLabel) then
  4.     initialiseFrame()
  5.     set the locV of sprite 3 to 290 - (VIDVOLUME * 105 / 256)
  6.     set the volume of sprite 6 to VIDVOLUME
  7.     set the movieRate of sprite 6 to 1
  8.     startTimer()
  9.   end if
  10. end
  11.  
  12. on enterFrame
  13.   if the timer > 60 then
  14.     set the visible of sprite 5 to not (the visible of sprite 5)
  15.     startTimer()
  16.   end if
  17.   if the movieRate of sprite 6 = 0 then
  18.     go("win restart")
  19.   end if
  20. end
  21.  
  22. on exitFrame
  23.   go(the frame)
  24. end
  25.